home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / pdcurs21.zip / PORTABLE.ZIP / CANCHANG.C < prev    next >
Text File  |  1992-11-21  |  974b  |  39 lines

  1. #define        CURSES_LIBRARY  1
  2. #include <curses.h>
  3. #undef can_change_color
  4.  
  5. #ifndef        NDEBUG
  6. char *rcsid_canchang = "$Header: c:/curses/portable/RCS/canchang.c%v 2.0 1992/11/15 03:28:47 MH Rel $";
  7. #endif
  8.  
  9.  
  10.  
  11.  
  12. /*man-start*********************************************************************
  13.  
  14.   can_change_color()   - Indicate if terminal can change color definitions
  15.  
  16.   PDCurses Description:
  17.        This is defined as a macro.
  18.  
  19.        This routine indicates if the terminal has the capability to change
  20.        the definition of its colors. Although this is possible at least
  21.        with VGA monitors, this function always returns FALSE.
  22.  
  23.  
  24.   PDCurses Return Value:
  25.        This function returns FALSE.
  26.  
  27.   PDCurses Errors:
  28.        N/A
  29.  
  30.   Portability:
  31.        PDCurses        int can_change_color( void );
  32.  
  33. **man-end**********************************************************************/
  34.  
  35. int can_change_color(void)
  36. {
  37.  return(FALSE);
  38. }
  39.